/* =========================================================
   enl-interactive-2-механики.css

   найди соответствия,
   разминка на память,
   заполни пропуски,
   восстанови план,
   расставь по порядку,
   собери цепочку

   &#9888;&#65039; Это ЧАСТЬ оформления интерактивных тренировок. Файлы
   темы нумерованы, и нужны ВСЕ: enl-interactive-1-основа,
   -2-механики, -3-механики. Один без других работать не
   будет — переменные цветов объявлены в первом.

   Делить пришлось потому, что каждый отдельный файл темы
   GetCourse обрезается на 65535 байтах, и обрезает молча.
   ========================================================= */

/* =========================================================
   10. механика match
   ========================================================= */
/* Отступ сверху — вместо подписей столбцов, которые здесь
   стояли раньше. Они не только называли столбцы, но и отбивали
   их от строки «действие:»; убрали подписи — строка прилипла к
   плашкам вплотную. Замечание Дарьи 31.08.2026. */
.enl-interactive-match {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 22px;
    margin-top: 18px;
}
.enl-interactive-match__column {
    display: grid;
    align-content: start;
    gap: 10px;
}
.enl-interactive-match__caption {
    margin-bottom: 3px;
    font-size: 12px;
    font-weight: 600;
    color: var(--enl-interactive-muted);
}
.enl-interactive-match__term {
    display: flex;
    align-items: center;
    min-height: 58px;
    padding: 13px 16px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    background: rgba(219, 236, 255, 0.52);
    border: 1px solid var(--enl-interactive-border);
    border-radius: 15px;
    cursor: pointer;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.enl-interactive-match__term:hover {
    transform: translateY(-2px);
}
.enl-interactive-match__term--selected {
    border-color: rgba(41, 41, 41, 0.18);
    background: var(--enl-interactive-blue);
    box-shadow: 0 0 0 3px rgba(219, 236, 255, 0.55);
}
.enl-interactive-match__term--done {
    cursor: default;
    border-color: rgba(221, 221, 132, 0.9);
    background: rgba(221, 221, 132, 0.42);
}
.enl-interactive-match__option {
    display: flex;
    align-items: center;
    min-height: 58px;
    padding: 13px 16px;
    font-size: 14px;
    line-height: 1.4;
    text-align: left;
    color: var(--enl-interactive-text);
    background: #FFFFFF;
    border: 1px solid var(--enl-interactive-border);
    border-radius: 15px;
    cursor: pointer;
    transition: transform 0.18s ease, border-color 0.18s ease, opacity 0.18s ease;
}
.enl-interactive-match__option:hover {
    transform: translateY(-2px);
    border-color: var(--enl-interactive-red);
}
.enl-interactive-match__option--done,
.enl-interactive-match__option--done:hover {
    opacity: 1;
    cursor: default;
    transform: none;
    background: rgba(221, 221, 132, 0.42);
    border-color: rgba(221, 221, 132, 0.9);
}
.enl-interactive__shake {
    animation: enlInteractiveShake 0.34s ease;
}
@keyframes enlInteractiveShake {
    0%, 100% { transform: translateX(0); }
    25%      { transform: translateX(-6px); }
    75%      { transform: translateX(6px); }
}


/* =========================================================
   11. механика memory
   ========================================================= */
.enl-interactive-memory {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
}
.enl-interactive-memory__card {
    position: relative;
    display: block;
    width: 100%;
    height: 145px;
    min-height: 145px;
    margin: 0;
    padding: 0;
    appearance: none;
    background: transparent;
    border: 0;
    perspective: 1000px;
    cursor: pointer;
}
.enl-interactive-memory__inner {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.48s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.enl-interactive-memory__card--open .enl-interactive-memory__inner,
.enl-interactive-memory__card--matched .enl-interactive-memory__inner {
    transform: rotateY(180deg);
}
.enl-interactive-memory__front,
.enl-interactive-memory__back {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 18px;
    overflow: hidden;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border: 1px solid var(--enl-interactive-border);
    border-radius: 20px;
    box-shadow: 0 10px 28px rgba(75, 67, 50, 0.08);
}
.enl-interactive-memory__front {
    color: var(--enl-interactive-text);
    background: var(--enl-interactive-pink);
    font-family: 'Defectica', 'Raleway', sans-serif;
    font-size: 38px;
    font-weight: 400;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.enl-interactive-memory__card:not(.enl-interactive-memory__card--open):not(.enl-interactive-memory__card--matched):hover
.enl-interactive-memory__front {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(75, 67, 50, 0.13);
}
.enl-interactive-memory__back {
    transform: rotateY(180deg);
    color: var(--enl-interactive-text);
    background: var(--enl-interactive-white);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
}
.enl-interactive-memory__card--matched .enl-interactive-memory__back {
    background: rgba(221, 221, 132, 0.48);
    border-color: rgba(221, 221, 132, 0.95);
}
.enl-interactive-memory__card[disabled] {
    cursor: default;
}
/* &#9888;&#65039; ЗДЕСЬ БЫЛА ЛИШНЯЯ «}» — см. шапку файла. Из-за неё
   следующее правило браузер выбрасывал целиком, и ошибка при
   открытии неподходящей пары не подсвечивалась.            */
.enl-interactive-memory__card--wrong .enl-interactive-memory__back {
    background: rgba(254, 217, 222, 0.95);
    border-color: rgba(176, 21, 19, 0.45);
    box-shadow: 0 0 0 3px rgba(176, 21, 19, 0.08);
}
.enl-interactive-memory__card--wrong .enl-interactive-memory__inner {
    animation: enlInteractiveMemoryWrong 0.38s ease;
}
@keyframes enlInteractiveMemoryWrong {
    0%, 100% { transform: rotateY(180deg) translateX(0); }
    25%      { transform: rotateY(180deg) translateX(-5px); }
    75%      { transform: rotateY(180deg) translateX(5px); }
}


/* =========================================================
   12. механика fill-blanks
   ========================================================= */
.enl-interactive-fill {
    display: grid;
    gap: 24px;
}
.enl-interactive-fill__text {
    padding: 24px;
    font-size: 18px;
    line-height: 1.8;
    background: rgba(253, 252, 243, 0.72);
    border: 1px solid var(--enl-interactive-border);
    border-radius: 18px;
}
.enl-interactive-fill--plan .enl-interactive-fill__text {
    white-space: pre-line;
    line-height: 1.9;
}
.enl-interactive-fill__blank {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 132px;
    min-height: 42px;
    margin: 0 4px;
    padding: 6px 12px;
    vertical-align: middle;
    color: var(--enl-interactive-muted);
    background: rgba(219, 236, 255, 0.55);
    border: 1px dashed rgba(41, 41, 41, 0.22);
    border-radius: 11px;
    transition: background 0.18s ease, border-color 0.18s ease,
                box-shadow 0.18s ease, transform 0.18s ease;
}
.enl-interactive-fill__blank--hover {
    background: rgba(219, 236, 255, 0.95);
    border-style: solid;
    border-color: rgba(41, 41, 41, 0.22);
    box-shadow: 0 0 0 3px rgba(219, 236, 255, 0.45);
    transform: translateY(-1px);
}
.enl-interactive-fill__blank--done {
    color: var(--enl-interactive-text);
    background: rgba(221, 221, 132, 0.48);
    border-style: solid;
    border-color: rgba(221, 221, 132, 0.95);
}
.enl-interactive-fill__blank--wrong {
    background: rgba(254, 217, 222, 0.95);
    border-color: rgba(176, 21, 19, 0.45);
    animation: enlInteractiveFillWrong 0.34s ease;
}
@keyframes enlInteractiveFillWrong {
    0%, 100% { transform: translateX(0); }
    25%      { transform: translateX(-5px); }
    75%      { transform: translateX(5px); }
}
.enl-interactive-fill__bank-wrap {
    display: grid;
    gap: 9px;
}
.enl-interactive-fill__caption {
    font-size: 12px;
    font-weight: 600;
    color: var(--enl-interactive-muted);
}
.enl-interactive-fill__bank {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.enl-interactive-fill__chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin: 0;
    padding: 9px 14px;
    appearance: none;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--enl-interactive-text);
    background: var(--enl-interactive-white);
    border: 1px solid var(--enl-interactive-border);
    border-radius: 999px;
    box-shadow: 0 5px 16px rgba(75, 67, 50, 0.06);
    cursor: grab;
    touch-action: none;
    user-select: none;
    -webkit-user-select: none;
    transition: transform 0.18s ease, border-color 0.18s ease,
                background 0.18s ease, opacity 0.18s ease, box-shadow 0.18s ease;
}
.enl-interactive-fill__chip:hover {
    transform: translateY(-2px);
    border-color: rgba(41, 41, 41, 0.25);
    box-shadow: 0 8px 20px rgba(75, 67, 50, 0.10);
}
.enl-interactive-fill__chip:active {
    cursor: grabbing;
}
.enl-interactive-fill__chip--dragging {
    opacity: 0.22;
}
/* Карточка выбрана нажатием (запасной способ ответа).
   &#9888;&#65039; Отдельный класс, а не --dragging: выбранная карточка
   должна выглядеть выбранной, а не исчезающей. Сначала я
   переиспользовал --dragging, и карточка после клика
   становилась полупрозрачной, будто пропала. */
.enl-interactive-fill__chip--picked,
.enl-interactive-fill__chip--picked:hover {
    border-color: rgba(41, 41, 41, 0.45);
    background: rgba(219, 236, 255, 0.75);
    box-shadow: 0 0 0 3px rgba(219, 236, 255, 0.55);
}
.enl-interactive-fill__ghost {
    position: fixed;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 280px;
    min-height: 42px;
    padding: 9px 14px;
    pointer-events: none;
    font-family: 'Raleway', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--enl-interactive-text);
    background: var(--enl-interactive-white);
    border: 1px solid rgba(41, 41, 41, 0.16);
    border-radius: 999px;
    box-shadow: 0 14px 35px rgba(75, 67, 50, 0.18);
    transform: translate(-50%, -50%) rotate(-1deg);
    opacity: 0.98;
}
.enl-interactive-fill__hint {
    margin: 0;
    font-size: 12px;
    line-height: 1.45;
    color: var(--enl-interactive-muted);
}
@media (max-width: 720px) {
    .enl-interactive-fill__text {
        padding: 18px;
        font-size: 16px;
        line-height: 1.7;
    }
    .enl-interactive-fill__blank {
        min-width: 108px;
        min-height: 38px;
        padding: 5px 9px;
    }
    .enl-interactive-fill__chip {
        min-height: 40px;
        padding: 8px 12px;
        font-size: 13px;
    }
    .enl-interactive-fill__ghost {
        max-width: 220px;
        font-size: 13px;
    }
}

/* =========================================================
   fill-blanks / plan view — компактная версия
   ========================================================= */
.enl-interactive-fill--plan {
    gap: 16px;
}
.enl-interactive-plan {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 22px;
    background: rgba(253, 252, 243, 0.72);
    border: 1px solid var(--enl-interactive-border);
    border-radius: 20px;
}
.enl-interactive-plan__heading {
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(41, 41, 41, 0.10);
}
.enl-interactive-plan__heading-label {
    margin-bottom: 4px;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--enl-interactive-muted);
}
.enl-interactive-plan__heading-title {
    font-family: 'Defectica', 'Raleway', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.08;
    color: var(--enl-interactive-text);
}
.enl-interactive-plan__section {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.enl-interactive-plan__section + .enl-interactive-plan__section {
    margin-top: 8px;
}
.enl-interactive-plan__row {
    display: grid;
    align-items: center;
    font-size: 14px;
    line-height: 1.4;
}
.enl-interactive-plan__row--main {
    grid-template-columns: 24px minmax(0, 1fr);
    font-weight: 600;
}
.enl-interactive-plan__row--child {
    grid-template-columns: 27px minmax(0, 1fr);
}
.enl-interactive-plan__children {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-left: 30px;
}
.enl-interactive-plan__number,
.enl-interactive-plan__label {
    align-self: center;
}
.enl-interactive-plan__content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
}
.enl-interactive-plan__blank {
    display: inline-flex;
    width: auto;
    min-width: 94px;
    min-height: 32px;
    margin: 0;
    padding: 5px 9px;
    font-size: 12px;
    line-height: 1.25;
    vertical-align: middle;
}
.enl-interactive-plan__text {
    display: inline;
}
.enl-interactive-fill--plan .enl-interactive-fill__bank {
    gap: 7px;
}
.enl-interactive-fill--plan .enl-interactive-fill__chip {
    min-height: 34px;
    padding: 6px 11px;
    font-size: 12px;
    line-height: 1.25;
}
.enl-interactive-fill--plan .enl-interactive-fill__bank-wrap {
    gap: 6px;
}
.enl-interactive-fill--plan .enl-interactive-fill__hint {
    font-size: 11px;
}
@media (max-width: 720px) {
    .enl-interactive-plan {
        gap: 17px;
        padding: 17px 14px;
    }
    .enl-interactive-plan__heading-title {
        font-size: 21px;
    }
    .enl-interactive-plan__children {
        padding-left: 16px;
    }
    .enl-interactive-plan__row--main {
        grid-template-columns: 22px minmax(0, 1fr);
    }
    .enl-interactive-plan__row--child {
        grid-template-columns: 25px minmax(0, 1fr);
    }
    .enl-interactive-plan__row {
        font-size: 13px;
    }
    .enl-interactive-plan__blank {
        min-width: 86px;
        min-height: 30px;
        padding: 4px 7px;
        font-size: 11px;
    }
}


/* =========================================================
   13. механика sequence / order
   ========================================================= */
.enl-interactive-sequence {
    display: grid;
    gap: 20px;
    max-width: 720px;
}
.enl-interactive-sequence__list {
    display: grid;
    gap: 10px;
}
.enl-interactive-sequence__item {
    position: relative;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    min-height: 66px;
    padding: 11px 16px 11px 11px;
    color: var(--enl-interactive-text);
    background: var(--enl-interactive-white);
    border: 1px solid var(--enl-interactive-border);
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(75, 67, 50, 0.06);
    cursor: grab;
    touch-action: none;
    user-select: none;
    -webkit-user-select: none;
    transition: transform 0.18s ease, border-color 0.18s ease,
                background 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}
.enl-interactive-sequence__item:hover {
    transform: translateY(-2px);
    border-color: rgba(41, 41, 41, 0.20);
    box-shadow: 0 9px 24px rgba(75, 67, 50, 0.10);
}
.enl-interactive-sequence__item:active {
    cursor: grabbing;
}
.enl-interactive-sequence__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    font-family: 'Defectica', 'Raleway', sans-serif;
    font-size: 20px;
    line-height: 1;
    background: rgba(219, 236, 255, 0.72);
    border-radius: 11px;
}
.enl-interactive-sequence__content {
    min-width: 0;
}
.enl-interactive-sequence__text {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}
.enl-interactive-sequence__year {
    display: none;
    margin-top: 3px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--enl-interactive-muted);
}
.enl-interactive-sequence--solved .enl-interactive-sequence__year {
    display: block;
}
.enl-interactive-sequence__handle {
    display: grid;
    grid-template-columns: repeat(2, 3px);
    gap: 3px;
    padding: 6px;
    opacity: 0.32;
}
.enl-interactive-sequence__handle span {
    width: 3px;
    height: 3px;
    background: currentColor;
    border-radius: 50%;
}
.enl-interactive-sequence__item--dragging,
.enl-interactive-sequence__item--dragging:hover {
    opacity: 0.18;
    transform: none;
    box-shadow: none;
}
.enl-interactive-sequence__ghost {
    position: fixed;
    z-index: 999999;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    margin: 0;
    padding: 11px 16px 11px 11px;
    pointer-events: none;
    color: var(--enl-interactive-text);
    background: var(--enl-interactive-white);
    border: 1px solid rgba(41, 41, 41, 0.16);
    border-radius: 16px;
    box-shadow: 0 18px 42px rgba(75, 67, 50, 0.20);
    transform: translate(-50%, -50%) rotate(-0.6deg);
    opacity: 0.98;
}
/* Полоски «сюда встанет карточка» здесь больше нет: пункт переезжает
   живьём, и список сам показывает будущий порядок. 31.08.2026.     */
.enl-interactive-sequence__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.enl-interactive-sequence__check {
    min-height: 44px;
    padding: 10px 18px;
    font-family: 'Raleway', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--enl-interactive-text);
    background: var(--enl-interactive-yellow);
    border: 0;
    border-radius: 13px;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.enl-interactive-sequence__check:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(75, 67, 50, 0.10);
}
.enl-interactive-sequence--wrong .enl-interactive-sequence__list {
    animation: enlInteractiveSequenceWrong 0.36s ease;
}
@keyframes enlInteractiveSequenceWrong {
    0%, 100% { transform: translateX(0); }
    25%      { transform: translateX(-5px); }
    75%      { transform: translateX(5px); }
}
.enl-interactive-sequence--solved .enl-interactive-sequence__item {
    cursor: default;
    background: rgba(221, 221, 132, 0.34);
    border-color: rgba(221, 221, 132, 0.85);
}
.enl-interactive-sequence--solved .enl-interactive-sequence__number {
    background: var(--enl-interactive-yellow);
}
.enl-interactive-sequence--solved .enl-interactive-sequence__handle {
    display: none;
}
@media (max-width: 720px) {
    .enl-interactive-sequence__item {
        grid-template-columns: 34px minmax(0, 1fr) auto;
        min-height: 62px;
        padding: 9px 11px 9px 9px;
    }
    .enl-interactive-sequence__number {
        width: 34px;
        height: 34px;
        font-size: 18px;
    }
    .enl-interactive-sequence__text {
        font-size: 13px;
    }
    .enl-interactive-sequence__ghost {
        grid-template-columns: 34px minmax(0, 1fr) auto;
        padding: 9px 11px 9px 9px;
    }
}


/* =========================================================
   19. sequence / cause-effect
   ========================================================= */
.enl-interactive-cause {
    display: grid;
    gap: 24px;
}
/* &#9888;&#65039; Было: grid ровно на три ячейки и две стрелки между ними.
   Инструкция цепочку тремя звеньями не ограничивает — бывает
   «предпосылка → изменение → результат», бывает длиннее.
   Стало: строка, которая переносится по месту, а число ячеек
   задают данные, а не вёрстка. */
.enl-interactive-cause__chain {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 10px;
}
.enl-interactive-cause__slot {
    flex: 1 1 210px;
}
.enl-interactive-cause__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    line-height: 1;
    color: rgba(41, 41, 41, 0.38);
}
.enl-interactive-cause__slot {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 155px;
    padding: 14px;
    background: rgba(253, 252, 243, 0.72);
    border: 1px dashed rgba(41, 41, 41, 0.20);
    border-radius: 18px;
    transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.enl-interactive-cause__slot--hover {
    background: rgba(219, 236, 255, 0.72);
    border-style: solid;
    border-color: rgba(41, 41, 41, 0.18);
    box-shadow: 0 0 0 3px rgba(219, 236, 255, 0.34);
}
.enl-interactive-cause__slot--wrong {
    background: rgba(254, 217, 222, 0.88);
    border-color: rgba(176, 21, 19, 0.35);
    animation: enlInteractiveCauseWrong 0.34s ease;
}
@keyframes enlInteractiveCauseWrong {
    0%, 100% { transform: translateX(0); }
    25%      { transform: translateX(-4px); }
    75%      { transform: translateX(4px); }
}
.enl-interactive-cause__slot--done {
    background: rgba(221, 221, 132, 0.30);
    border-style: solid;
    border-color: rgba(221, 221, 132, 0.82);
}
.enl-interactive-cause__slot-title {
    margin-bottom: 10px;
    font-family: 'Defectica', 'Raleway', sans-serif;
    font-size: 23px;
    font-weight: 400;
    line-height: 1.05;
}
.enl-interactive-cause__slot-placeholder {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    min-height: 72px;
    font-size: 12px;
    line-height: 1.4;
    text-align: center;
    color: var(--enl-interactive-muted);
}
.enl-interactive-cause__placed {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    min-height: 78px;
    padding: 13px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    background: rgba(221, 221, 132, 0.46);
    border: 1px solid rgba(221, 221, 132, 0.90);
    border-radius: 13px;
    animation: enlInteractiveCausePlaced 0.22s ease;
}
@keyframes enlInteractiveCausePlaced {
    from { opacity: 0; transform: scale(0.95); }
    to   { opacity: 1; transform: scale(1); }
}
.enl-interactive-cause__bank-wrap {
    display: grid;
    gap: 9px;
}
.enl-interactive-cause__caption {
    font-size: 12px;
    font-weight: 600;
    color: var(--enl-interactive-muted);
}
.enl-interactive-cause__bank {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.enl-interactive-cause__card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--enl-interactive-text);
    background: var(--enl-interactive-white);
    border: 1px solid var(--enl-interactive-border);
    border-radius: 13px;
    box-shadow: 0 5px 16px rgba(75, 67, 50, 0.06);
    cursor: grab;
    touch-action: none;
    user-select: none;
    -webkit-user-select: none;
    transition: transform 0.18s ease, border-color 0.18s ease,
                box-shadow 0.18s ease, opacity 0.18s ease;
}
.enl-interactive-cause__card:hover {
    transform: translateY(-2px);
    border-color: rgba(41, 41, 41, 0.22);
    box-shadow: 0 8px 20px rgba(75, 67, 50, 0.10);
}
.enl-interactive-cause__card--dragging {
    opacity: 0.20;
}
.enl-interactive-cause__card--picked,
.enl-interactive-cause__card--picked:hover {
    border-color: rgba(41, 41, 41, 0.45);
    background: rgba(219, 236, 255, 0.75);
    box-shadow: 0 0 0 3px rgba(219, 236, 255, 0.55);
}
.enl-interactive-cause__ghost {
    position: fixed;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 300px;
    min-height: 44px;
    padding: 10px 14px;
    pointer-events: none;
    font-family: 'Raleway', Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    text-align: center;
    color: var(--enl-interactive-text);
    background: var(--enl-interactive-white);
    border: 1px solid rgba(41, 41, 41, 0.16);
    border-radius: 13px;
    box-shadow: 0 14px 34px rgba(75, 67, 50, 0.18);
    transform: translate(-50%, -50%) rotate(-0.7deg);
}
.enl-interactive-cause__hint {
    margin: 0;
    font-size: 12px;
    line-height: 1.45;
    color: var(--enl-interactive-muted);
}
@media (max-width: 720px) {
    .enl-interactive-cause__chain {
        grid-template-columns: 1fr;
    }
    .enl-interactive-cause__arrow {
        min-height: 24px;
        transform: rotate(90deg);
    }
    .enl-interactive-cause__slot {
        min-height: 125px;
    }
}